home *** CD-ROM | disk | FTP | other *** search
/ ...taking it to the Macs! / ...taking it to the Macs!.iso / Extras / ActiveX Mac SDK / ActiveX SDK / Sample Controls / BDiamond / BDMacros.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-20  |  353 b   |  13 lines  |  [TEXT/CWIE]

  1. #ifndef _BDMacros_
  2. #define _BDMacros_
  3.  
  4. ///////////////////////////////////////////////////////////////////////////////
  5. //
  6. //    Macro definitions:
  7. //
  8.  
  9. #define STRINGS_ARE_EQUAL(str1,str2) (( strcmp ( str1, str2 ) == 0 ))
  10. #define MAX(num1,num2) ( ( num1 > num2 ) ? num1 : num2 )
  11. #define MIN(num1,num2) ( ( num1 < num2 ) ? num1 : num2 )
  12.  
  13. #endif // _BDMacros_